home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / xnot12a.zip / CRYPT.C < prev    next >
C/C++ Source or Header  |  1993-06-10  |  7KB  |  241 lines

  1. /*    Crypt:    Encryption routines for MicroEMACS
  2.         written by Dana Hoggatt and Daniel Lawrence
  3. */
  4.  
  5. #include    <stdio.h>
  6. #include    "jam.h"
  7. #include    "def.h"
  8.  
  9. #ifdef    DOCRYPT
  10.  
  11. static int rn_(mod95, (int val));
  12. static int rn_(setkey,(int f, int n));
  13.  
  14. int toggleencrypt(f, n)
  15. int f, n;
  16. {
  17.   register int s = TRUE;
  18.   register EWINDOW *wp;
  19.  
  20.   if (curbp->b_flag & BFCRYPT) 
  21.    curbp->b_flag &= ~BFCRYPT;        /* turn off */
  22.   else
  23.    {
  24.      s = setkey(f, n);
  25.      if (s == TRUE)
  26.        curbp->b_flag |= BFCRYPT;    /* turn on */
  27.    }
  28.  
  29.   wp = wheadp;                /* Update mode lines.    */
  30.   while (wp != NULL) 
  31.     {
  32.       if (wp->w_bufp == curbp)
  33.     wp->w_flag |= WFMODE;
  34.       wp = wp->w_wndp;
  35.     }
  36.   
  37.   return (s);
  38. }
  39.  
  40. static int setkey(f, n)
  41. int f;        
  42. int n;
  43. {
  44.   register int status;    /* return status */
  45.   char key[NPAT];       /* new encryption string */
  46.  
  47.   /* get the string to use as an encrytion string 
  48.   */
  49.   if ((status = eread("Encryption String: ", key, NPAT - 1, EFNEW)) != TRUE)
  50.     return(status);
  51.  
  52.   /* and encrypt it 
  53.   */
  54.   crypt((char *)NULL, 0);
  55.   crypt(key, strlen(key));
  56.  
  57.   /* and save it off 
  58.   */
  59.   strcpy(curbp->b_key, key);
  60.   ewprintf("");        /* clear it off the bottom line */
  61.   return(TRUE);
  62. }
  63.  
  64. /**********
  65.  *
  66.  *    crypt - in place encryption/decryption of a buffer
  67.  *
  68.  *    (C) Copyright 1986, Dana L. Hoggatt
  69.  *    1216, Beck Lane, Lafayette, IN
  70.  *
  71.  *    When consulting directly with the author of this routine, 
  72.  *    please refer to this routine as the "DLH-POLY-86-B CIPHER".  
  73.  *
  74.  *    This routine was written for Dan Lawrence, for use in V3.8 of
  75.  *    MICRO-emacs, a public domain text/program editor.  
  76.  *
  77.  *    I kept the following goals in mind when preparing this function:
  78.  *
  79.  *        1.    All printable characters were to be encrypted back
  80.  *        into the printable range, control characters and
  81.  *        high-bit characters were to remain unaffected.  this
  82.  *        way, encrypted would still be just as cheap to 
  83.  *        transmit down a 7-bit data path as they were before.
  84.  *
  85.  *        2.    The encryption had to be portable.  The encrypted 
  86.  *        file from one computer should be able to be decrypted 
  87.  *        on another computer.
  88.  *
  89.  *        3.    The encryption had to be inexpensive, both in terms
  90.  *        of speed and space.
  91.  *
  92.  *        4.    The system needed to be secure against all but the
  93.  *        most determined of attackers.
  94.  *
  95.  *    For encryption of a block of data, one calls crypt passing 
  96.  *    a pointer to the data block and its length. The data block is 
  97.  *    encrypted in place, that is, the encrypted output overwrites 
  98.  *    the input.  Decryption is totally isomorphic, and is performed 
  99.  *    in the same manner by the same routine.  
  100.  *
  101.  *    Before using this routine for encrypting data, you are expected 
  102.  *    to specify an encryption key.  This key is an arbitrary string,
  103.  *    to be supplied by the user.  To set the key takes two calls to 
  104.  *    crypt().  First, you call 
  105.  *
  106.  *        crypt(NULL, vector)
  107.  *
  108.  *    This resets all internal control information.  Typically (and 
  109.  *    specifically in the case on MICRO-emacs) you would use a "vector" 
  110.  *    of 0.  Other values can be used to customize your editor to be 
  111.  *    "incompatable" with the normally distributed version.  For 
  112.  *    this purpose, the best results will be obtained by avoiding
  113.  *    multiples of 95.
  114.  *
  115.  *    Then, you "encrypt" your password by calling 
  116.  *
  117.  *        crypt(pass, strlen(pass))
  118.  *
  119.  *    where "pass" is your password string.  Crypt() will destroy 
  120.  *    the original copy of the password (it becomes encrypted), 
  121.  *    which is good.  You do not want someone on a multiuser system 
  122.  *    to peruse your memory space and bump into your password.  
  123.  *    Still, it is a better idea to erase the password buffer to 
  124.  *    defeat memory perusal by a more technical snooper.  
  125.  *
  126.  *    For the interest of cryptologists, at the heart of this 
  127.  *    function is a Beaufort Cipher.  The cipher alphabet is the 
  128.  *    range of printable characters (' ' to '~'), all "control" 
  129.  *    and "high-bit" characters are left unaltered.
  130.  *
  131.  *    The key is a variant autokey, derived from a wieghted sum 
  132.  *    of all the previous clear text and cipher text.  A counter 
  133.  *    is used as salt to obiterate any simple cyclic behavior 
  134.  *    from the clear text, and key feedback is used to assure 
  135.  *    that the entire message is based on the original key, 
  136.  *    preventing attacks on the last part of the message as if 
  137.  *    it were a pure autokey system.
  138.  *
  139.  *    Overall security of encrypted data depends upon three 
  140.  *    factors:  the fundamental cryptographic system must be 
  141.  *    difficult to compromise; exhaustive searching of the key 
  142.  *    space must be computationally expensive; keys and plaintext 
  143.  *    must remain out of sight.  This system satisfies this set
  144.  *    of conditions to within the degree desired for MicroEMACS.
  145.  *
  146.  *    Though direct methods of attack (against systems such as 
  147.  *    this) do exist, they are not well known and will consume 
  148.  *    considerable amounts of computing time.  An exhaustive
  149.  *    search requires over a billion investigations, on average.
  150.  *
  151.  *    The choice, entry, storage, manipulation, alteration, 
  152.  *    protection and security of the keys themselves are the 
  153.  *    responsiblity of the user.  
  154.  *
  155.  **********/
  156.  
  157. void docrypt(bptr, len)
  158. register char *bptr;        /* buffer of characters to be encrypted */
  159. register unsigned int len;    /* number of characters in the buffer */
  160. {
  161.     register int cc;    /* current character being considered */
  162.  
  163.     static long key = 0;    /* 29 bit encipherment key */
  164.     static int salt = 0;    /* salt to spice up key with */
  165.  
  166.     if (!bptr) {        /* is there anything here to encrypt? */
  167.         key = len;    /* set the new key */
  168.         salt = len;    /* set the new salt */
  169.         return;
  170.     }
  171.     while (len--) {        /* for every character in the buffer */
  172.  
  173.         cc = *bptr;    /* get a character out of the buffer */
  174.  
  175.         /* only encipher printable characters 
  176.                 */
  177.         if ((cc >= ' ') && (cc <= '~')) {
  178.  
  179. /*  If the upper bit (bit 29) is set, feed it back into the key.  This 
  180. * assures us that the starting key affects the entire message.  
  181. */
  182.  
  183.             key &= 0x1FFFFFFFL;    /* strip off overflow */
  184.             if (key & 0x10000000L) {
  185.                 key ^= 0x0040A001L;    /* feedback */
  186.             }
  187.  
  188. /*  Down-bias the character, perform a Beaufort encipherment, and 
  189.     up-bias the character again.  We want key to be positive 
  190.     so that the left shift here will be more portable and the 
  191.     mod95() faster   
  192. */
  193.  
  194.             cc = mod95((int)(key % 95) - (cc - ' ')) + ' ';
  195.  
  196. /**  the salt will spice up the key a little bit, helping to obscure 
  197.     any patterns in the clear text, particularly when all the 
  198.     characters (or long sequences of them) are the same.  We do 
  199.     not want the salt to go negative, or it will affect the key 
  200.     too radically.  It is always a good idea to chop off cyclics 
  201.     to prime values.  
  202. **/
  203.  
  204.             if (++salt >= 20857) {    /* prime modulus */
  205.                 salt = 0;
  206.             }
  207.  
  208. /*  our autokey (a special case of the running key) is being 
  209. * generated by a wieghted checksum of clear text, cipher 
  210. * text, and salt.   
  211. */
  212.  
  213.             key = key + key + cc + *bptr + salt;
  214.         }
  215.         *bptr++ = (char)cc;    /* put character back into buffer */
  216.     }
  217.     return;
  218. }
  219.  
  220. static int mod95(val)
  221. register int val;
  222.  
  223. {
  224.     /*  The mathematical MOD does not match the computer MOD  */
  225.  
  226.     /*  Yes, what I do here may look strange, but it gets the
  227.         job done, and portably at that.  */
  228.  
  229.     while (val >= 9500)
  230.         val -= 9500;
  231.     while (val >= 950)
  232.         val -= 950;
  233.     while (val >= 95)
  234.         val -= 95;
  235.     while (val < 0)
  236.         val += 95;
  237.     return (val);
  238. }
  239. #endif /* CRYPT */
  240.  
  241.